
head
/* Style the header */
.header {
  background-image: url('..\_images\CuratedCryptid.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  width: 100%;
  height: 200px;
  top: 0; /* Position the header at the top of the page */
}
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  margin: auto;
  background-color: #33172b;
}

  
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #131d1e;
  margin-bottom: 20px;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #b89209;
  font-weight: bold;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: #662e57;
}


  /* "More" dropdown nav link */
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: #662e57;
  font-weight: bold;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown:hover .dropbtn {
  background-color: #ddd;
  color: #131d1e;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #283233;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #a17f08;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: #662e57;
}

.dropdown:hover .dropdown-content {
  display: block;
}

  /* for the Bigfeet Page */
.newspaper {
  column-width: 250px;
}


  /* ccbtn & ccdown are specific to cryptid jump list */
#ccbtn {
  background-color: #33172b;
  color: #ddd;
  font-weight: bold;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}



#ccdown {
  position: relative;
  display: inline-block;
  
}

#ccdown-content {
  display: none;
  position: absolute;
  background-color: #283233;
  min-width: 230px;
  max-height: 300px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
  overflow: auto;
}

#ccdown-content a {
  color: #ddd;
  font-weight: bold;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

#ccdown a:hover {
 background-color: #ddd;
 color: #662e57;
}

#ccdown-content a:hover {
  background-color: #ddd;
  color: #662e57;
}

#ccdown:hover #ccdown-content {display: block;}

#ccdown:hover #ccbtn {background-color: #a17f08;
  color: #ddd;
  }

.show {display: block;}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 50%;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 50%;
  background-color: #33172b;
  padding-left: 20px;

}

/* Fake image */
.fakeimg {
  background-color: #e6dede;
  width: 100%;
  padding: 20px;
}

/* for landing page */
.card {
  background-color: #ddd;
  padding: 20px;
  margin-bottom: 20px;
}

/* for sub pages */
#card {
  background-color: #ddd;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}


/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Footer */
.footer {
  left: 0;
  bottom: 0;
  margin-top: 20px;
  width: 100%;
  height: 150px;
  border: none;
  
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
 

/*for contact us input box */

*{
  box-sizing: border-box;
}

.contact-container{
height: 50vh;
display: flex;
align-items: center;
justify-content: space-evenly;
}

.contact-left{
display: flex;
flex-direction: column;
align-items: start;
gap: 20px;
}

.contact-left-title h2{ 
font-weight: 200;
font-size: 30px;
margin-bottom: 5px
}

.contact-left-title hr{
border: none;
width: 100%;
height: 5px;
background-color: #33172B;
border-radius: 10px;
margin-bottom: 20px;
}

.contact-inputs{
width: 30vw;
height: 50px;
border: none;
outline: none;
padding-left: 25px;
font-size: 16px;
color: #283233;
border-radius: 50px;
}

.contact-left textarea{
height: 150px;
padding-top: 15px;
border-radius: 20px;
}


.contact-inputs:focus{
border: 3px solid #662e57;
}

.contact-inputs::placeholder{
color: #4D2241;
}

.contact-left button{
display: flex;
align-items: center;
padding: 15px 30px;
font-size: 16px;
font-weight: 600;
color: black;
gap: 10px;
border: none;
border-radius: 50px;
background: white;
cursor: pointer;
}

.contact-left button:hover{
background-color: #b89209;
color: #33172b;
transition: 0.3s;
}

.contact-right img{
  width: 50vw;
  float: right;
  display: flex;  

}

@media (max-width: 800px) {
  .contact-inputs{
    width: 80vw;
  }
  .contact-right{
    display: none;
  }
}





